home *** CD-ROM | disk | FTP | other *** search
/ Manchester United on CD / Manchester United on CD.iso / mainmenu.dxr / Internal_29_FLASH.ls < prev    next >
Encoding:
Text File  |  2000-08-30  |  472 b   |  21 lines

  1. property psp_mysprite, pi_nextflashtime
  2.  
  3. on beginSprite me
  4.   psp_mysprite = sprite(me.spriteNum)
  5. end
  6.  
  7. on exitFrame me
  8.   if the timer > pi_nextflashtime then
  9.     pi_nextflashtime = the timer + 30
  10.     if psp_mysprite.blend = 100 then
  11.       psp_mysprite.blend = 25
  12.     else
  13.       psp_mysprite.blend = 100
  14.     end if
  15.   end if
  16. end
  17.  
  18. on getPropertyDescriptionList me
  19.   return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
  20. end
  21.